home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / qrep10b.zip / DEMO.DPR < prev    next >
Text File  |  1995-11-11  |  725b  |  26 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {TQuickReportDemo},
  6.   Mdrep in 'MDREP.PAS' {MDForm},
  7.   Simprep in 'SIMPREP.PAS' {SimpForm},
  8.   Biorep in 'BIOREP.PAS' {Bioform},
  9.   Demopre in 'DEMOPRE.PAS' {PrevForm},
  10.   Labelrep in 'LABELREP.PAS' {LabelForm},
  11.   Textlist in 'TEXTLIST.PAS' {TextRep};
  12.  
  13. {$R *.RES}
  14.  var
  15.  t : longint;
  16. begin
  17.   Application.CreateForm(TTQuickReportDemo, TQuickReportDemo);
  18.   Application.CreateForm(TSimpForm, SimpForm);
  19.   Application.CreateForm(TMDForm, MDForm);
  20.   Application.CreateForm(TBioform, Bioform);
  21.   Application.CreateForm(TPrevForm, PrevForm);
  22.   Application.CreateForm(TLabelForm, LabelForm);
  23.   Application.CreateForm(TTextRep, TextRep);
  24.   Application.Run;
  25. end. 
  26.